home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / snip0493.zip / FTIME.H < prev    next >
C/C++ Source or Header  |  1993-04-05  |  519b  |  21 lines

  1. /*
  2. **  Public domain by Jeff Dunlop
  3. */
  4.  
  5. #ifndef __TURBOC__
  6.  
  7. struct ftime /* As defined by Borland C */
  8. {
  9.     unsigned    ft_tsec  : 5;   /* Two second interval */
  10.     unsigned    ft_min   : 6;   /* Minutes */
  11.     unsigned    ft_hour  : 5;   /* Hours */
  12.     unsigned    ft_day   : 5;   /* Days */
  13.     unsigned    ft_month : 4;   /* Months */
  14.     unsigned    ft_year  : 7;   /* Year */
  15. };
  16.  
  17. int _cdecl getftime (int, struct ftime *);
  18. int _cdecl setftime (int, struct ftime *);
  19.  
  20. #endif /* __TURBOC__ */
  21.